home *** CD-ROM | disk | FTP | other *** search
/ Amoszine 3 / Amoszine 3.adf / TIPS_SOURCE / example5.AMOS / example5.amosSourceCode
AMOS Source Code  |  1992-02-26  |  499b  |  21 lines

  1. '--------------------------------------  
  2. '*** Example 5 *** 
  3. '
  4. 'Don't use multiple if's 
  5. '  
  6. 'For example.
  7. '
  8. If A=1 Then Proc A1
  9. If A=2 Then Proc A2
  10. If A=3 Then Proc A3
  11. If A=4 Then Proc A4
  12. '
  13. 'Can be replaced with. 
  14. '
  15. On A Proc A1,A2,A3,A4
  16. '
  17. 'Although this method can't pass varables, it is much faster than using  
  18. 'multiple if's with more conditions resulting in more of a gain in speed.  
  19. '
  20. ' This example is not complete.
  21. '------------------------------------------------------------------------